home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Motor Sport Digital Archive Collection 1960s
/
Motor Sport Digital Archive Collection 1960s.iso
/
main.swf
/
scripts
/
mx
/
rpc
/
xml
/
ComplexString.as
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2008-05-21
|
450 b
|
25 lines
package mx.rpc.xml
{
internal dynamic class ComplexString
{
public var value:String;
public function ComplexString(param1:String)
{
super();
value = param1;
}
public function valueOf() : Object
{
return SimpleXMLDecoder.simpleType(value);
}
public function toString() : String
{
return value;
}
}
}